home *** CD-ROM | disk | FTP | other *** search
/ Aminet 52 / Aminet 52 (2002)(GTI - Schatztruhe)[!][Dec 2002].iso / Aminet / game / patch / WHDIGamesU-Z.lzh / Wings.lha / WingsHD / Install-Wings next >
Text File  |  2001-12-02  |  3KB  |  191 lines

  1. ;****************************
  2.  
  3. (set #sub-dir "data")        ;sub directory containing data files
  4. (set #readme-file "wingshd.readme")    ;name of readme file
  5. (set #doc-file "wings.doc")    ;name of doc file
  6.  
  7. ;****************************
  8.  
  9. ;----------------------------
  10. ; Checks if given program is reachable via the path
  11. ; if not abort install
  12. ; IN:  #program - to check
  13. ; OUT: -
  14.  
  15. (procedure P_chkrun
  16.   (if
  17.     (= 0 (run ("cd SYS:\nWhich %s" #program)))
  18.     ("")
  19.     (abort ("You must install \"%s\" first !\nIt must be accessible via the path.\nYou can find it in the whdload package." #program))
  20.   )
  21. )
  22.  
  23. ;----------------------------
  24. ; Wait for inserting disk
  25. ; IN:  #AD_disk - name of disk
  26. ; OUT: -
  27.  
  28. (procedure P_disk
  29.   (askdisk
  30.     (dest #AD_disk)
  31.     (prompt ("\nInsert Disk \"%s\" in any drive !" #AD_disk))
  32.     (help @askdisk-help)
  33.   )
  34. )
  35.  
  36.  
  37. ;****************************
  38.  
  39. (if
  40.   (exists #readme-file)
  41.   (if 
  42.     (= 0 (run ("SYS:Utilities/Multiview %s" #readme-file)))
  43.     ("")
  44.     (run ("SYS:Utilities/More %s" #readme-file))
  45.   )
  46. )
  47.  
  48. (set #program "WHDLoad")
  49. (P_chkrun)
  50.  
  51.  
  52. (set @default-dest
  53.   (askdir
  54.     (prompt ("Where should \"%s\" installed ?\nA drawer \"%s\" will automatically created." @app-name @app-name))
  55.     (help @askdir-help)
  56.     (default @default-dest)
  57.     (disk)
  58.   )
  59. )
  60. (set #dest (tackon @default-dest @app-name))
  61. (if
  62.   (exists #dest)
  63.   (
  64.     (set #choice
  65.       (askbool
  66.         (prompt ("\nDirectory \"%s\" already exists.\n Should it be deleted ?" #dest))
  67.         (default 1)
  68.         (choices "Delete" "Skip")
  69.         (help @askbool-help)
  70.       )
  71.     )
  72.     (if
  73.       (= #choice 1)
  74.       (run ("Delete \"%s\" \"%s.info\" All" #dest #dest))
  75.     )
  76.   )
  77. )
  78. (makedir #dest
  79.   (help @makedir-help)
  80.   (infos)
  81. )
  82.  
  83. ;----------------------------
  84.  
  85. (copyfiles
  86.   (help @copyfiles-help)
  87.   (source ("%s.slave" @app-name))
  88.   (dest #dest)
  89. )
  90.  
  91. (if
  92.   (exists ("%s.newicon" @app-name))
  93.   (set #icon
  94.     (askchoice
  95.       (prompt "\nWhich icon do you like to install ?\n")
  96.       (default 0)
  97.       (choices "Original" "NewIcon" "Glowicon")
  98.       (help @askchoice-help)
  99.     )
  100.   )
  101.   (set #icon 0)
  102. )
  103. (select #icon
  104.   (set #icon ("%s.inf" @app-name))
  105.   (set #icon ("%s.newicon" @app-name))
  106.   (set #icon ("%s.glowicon" @app-name))
  107. )
  108. (copyfiles
  109.   (help @copyfiles-help)
  110.   (source #icon)
  111.   (newname ("%s.info" @app-name))
  112.   (dest #dest)
  113. )
  114. (if
  115.   (exists #readme-file)
  116.   (copyfiles
  117.     (help @copyfiles-help)
  118.     (source #readme-file)
  119.     (dest #dest)
  120.   )
  121. )
  122. (if
  123.   (exists ("%s.info" #readme-file))
  124.   (copyfiles
  125.     (help @copyfiles-help)
  126.     (source ("%s.info" #readme-file))
  127.     (dest #dest)
  128.   )
  129. )
  130.  
  131. (if
  132.   (exists #doc-file)
  133.   (copyfiles
  134.     (help @copyfiles-help)
  135.     (source #doc-file)
  136.     (dest #dest)
  137.   )
  138. )
  139. (if
  140.   (exists ("%s.info" #doc-file))
  141.   (copyfiles
  142.     (help @copyfiles-help)
  143.     (source ("%s.info" #doc-file))
  144.     (dest #dest)
  145.   )
  146. )
  147.  
  148.  
  149. (if
  150.   (= #sub-dir "")
  151.   ("")
  152.   (
  153.     (set #dest (tackon #dest #sub-dir))
  154.     (makedir #dest
  155.       (help @makedir-help)
  156.     )
  157.   )
  158. )
  159.  
  160. ;----------------------------
  161.  
  162. (copyfiles
  163.   (help @copyfiles-help)
  164.   (source "OSEmu.400")
  165.   (dest #dest)
  166. )
  167.  
  168. (set #AD_disk "reel 1")
  169. (P_disk)
  170.  
  171. (copyfiles
  172.   (help @copyfiles-help)
  173.   (source ("%s:" #AD_disk))
  174.   (dest #dest)
  175.   (files)
  176.   (pattern "~(#?.info)")
  177. )
  178.  
  179.  
  180. (set #AD_disk "reel 2")
  181. (P_disk)
  182.  
  183. (copyfiles
  184.   (help @copyfiles-help)
  185.   (source ("%s:" #AD_disk))
  186.   (dest #dest)
  187.   (files)
  188.   (pattern "~(#?.info)")
  189. )
  190. (exit)
  191.